home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Workbench / AssignMaster / Install / deutsch < prev    next >
Encoding:
Text File  |  1998-11-16  |  3.4 KB  |  114 lines

  1. (welcome "Willkommen zum Installationshilfsmittel für AssignMaster.")
  2.  
  3. (if (= (askbool (prompt "A C H T U N G !\n\n"
  4.                         "Eine ältere Version des AssignMasters "
  5.                         "solle (eingeschlossen aller Sicherungsdateien) "
  6.                         "zuvor aus dem System entfernt werden.\n\n"
  7.                         "Soll mit der installation fortgefahren werden?")
  8.                 (help @askbool-help)
  9.                 (default 1)
  10.         ) 0)
  11.   (
  12.     (exit (cat "\n\nDer Benutzer hat die Installation abgebrochen."
  13.                "Es wirden keine Dateien kopiert.")
  14.           (quiet)
  15.     )
  16.   )
  17. )
  18.  
  19. (set #destination_prg (askdir (prompt "Bitte wähle jetzt das Zielverzeichnis "
  20.                                       "für die Programmdatei.")
  21.                               (help @askdir-help)
  22.                               (default "SYS:Tools")
  23.                       )
  24. )
  25.  
  26.  
  27. (set #destination_doc (askdir (prompt "Wohin soll die Dokumentation "
  28.                                       "kopiert werden?")
  29.                               (help @askdir-help)
  30.                               (default "HELP:")
  31.                       )
  32. )
  33.  
  34. (set #libcopy (askbool (prompt "Soll die Support-Bibliothek für AssignMaster "
  35.                                "installiert werden?\n\nSie wird nur für die "
  36.                                "Handhabung der Startup-Dateien benötigt. Dieses "
  37.                                "Feature arbeitet allerdings noch nicht korrekt!")
  38.                        (help @askbool-help)
  39.                        (default 0)
  40.               )
  41. )
  42.  
  43. (copyfiles (prompt "Kopiere Programmdatei...")
  44.            (help @copyfiles-help)
  45.            (source "/AssignMaster")
  46.            (dest #destination_prg)
  47.            (files)
  48.            (confirm)
  49.            (infos)
  50. )
  51.  
  52. (copyfiles (prompt "Kopiere Dokumentation...")
  53.            (help @copyfiles-help)
  54.            (source "/docs/AM_Eng.GUIDE")
  55.            (dest #destination_doc)
  56.            (newname "AssignMaster.guide")
  57.            (files)
  58.            (confirm)
  59.            (infos)
  60. )
  61.  
  62. (copyfiles (prompt "Kopiere Programmgeschichte...")
  63.            (help @copyfiles-help)
  64.            (source "/docs/AM_History.txt")
  65.            (dest #destination_doc)
  66.            (newname "AssignMaster.History")
  67.            (files)
  68.            (infos)
  69.            (confirm)
  70. )
  71.  
  72. (if (= 1 #libcopy)
  73.  
  74.   (copylib (prompt "Kopiere Support-Bibliothek...")
  75.            (help @copyfiles-help)
  76.            (source "/libs/amsupport.library")
  77.            (dest "LIBS:")
  78.   )
  79. )
  80.  
  81. (if (= 1 (askbool (prompt "Soll die aktuelle Assign-Liste jetzt gesichert "
  82.                           "werden?")
  83.                   (help @askbool-help)
  84.                   (default 0)
  85.                   (choices "Ja" "Nein")
  86.          )
  87.     )
  88.   (
  89.     (set #savefile (askfile (prompt "Bitte wähle jetzt den Namen (und Pfad)"
  90.                                     " der anzulegenden Sicherungsdatei:")
  91.                             (help @askfile-help)
  92.                             (default #destination_prg)
  93.                    )
  94.     )
  95.     (set #amcommand (cat (tackon #destination_prg "AssignMaster")
  96.                          " BACKUP=\""
  97.                          #savefile
  98.                          "\"")
  99.     )
  100.     (run #amcommand (prompt (cat "Speichere Assign-Liste in Datei:\n"
  101.                                  #savefile)
  102.                     )
  103.                     (help @run-help)
  104.                     (confirm)
  105.     )
  106.   )
  107. )
  108.  
  109. (exit (cat "Installation beendet.\n\n")
  110.       (quiet)
  111. )
  112.  
  113.  
  114.